博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签2
阅读量:6231 次
发布时间:2019-06-21

本文共 2804 字,大约阅读时间需要 9 分钟。

    1. 个人中心—视图函数带标签页面参数tag
      @app.route('/usercenter/<user_id>/<tag>')
      def usercenter(user_id, tag):
         if tag == ‘1':
             return render_template('usercenter1.html', **context)
    2. 个人中心—导航标签链接增加tag参数
      <li role=“presentation”><a href=“{
      { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
    3. 个人中心—有链接到个人中心页面的url增加tag参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } if tag =='1': return render_template('usercenter1.html',**context) elif tag == '2': return render_template('usercenter2.html', **context) else: return render_template('usercenter3.html', **context)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
12.8.1 Red Hat和Fedora的网络配置
查看>>
Truncate Table
查看>>
Android开发教程:shape和selector的结合使用
查看>>
【转】C# DllImport的用法(经典!)
查看>>
Oracle RAC 碰到 gc buffer busy
查看>>
Selenium2(WebDriver)总结(一)---启动浏览器、设置profile&加载插件
查看>>
struct2视频教程
查看>>
SPOJ 2798 Query on a tree again!
查看>>
利用URL重写实现参数目录化
查看>>
linux 判断文件最后更新时间 实现监控日志是否有输出功能
查看>>
爪哇国新游记之八----读写文件及数组排序
查看>>
应用解决告诉你什么时候该用ajax
查看>>
PAT A1015
查看>>
React-生命周期杂记
查看>>
十流程序员 编程 的小小想法
查看>>
设计模式(2)代理模式
查看>>
七牛云对象存储 JavaScript SDK 更新,即刻体验更简单·可信赖的服务
查看>>
我们来聊聊Cookie、Session和Storage的那些事
查看>>
video在微信和QQ浏览器中不全屏播放解决
查看>>
如何快速成长为技术大牛?阿里资深技术专家的总结亮了
查看>>